[8.19] (backport #9048) ci: build agent from snapshot DRA#9280
Merged
pkoutsovasilis merged 6 commits into8.19from Aug 8, 2025
Merged
[8.19] (backport #9048) ci: build agent from snapshot DRA#9280pkoutsovasilis merged 6 commits into8.19from
pkoutsovasilis merged 6 commits into8.19from
Conversation
Contributor
Author
|
Cherry-pick of a155660 has failed: To fix up this pull request, you can check it out locally. See documentation: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally |
8 tasks
Contributor
|
Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane) |
Contributor
|
first I wanna see how this PR behaves on |
8 tasks
* feat: rework .package-version and mage integration:UpdatePackageVersion to make CI build always from snapshot DRA * feat: incorporate USE_PACKAGE_VERSION in mage * experiment: bump version.go * Revert "experiment: bump version.go" This reverts commit a57ee10. * chore: bump .package-version * feat: allow AGENT_VERSION to be overridden by env var * fix: use named args for all args in integration_tests_tf.ps1 * feat: panic on err of initPackageVersion * fix: don't panic when .package-version file doesn't exist, log it instead * feat: rework fabrication of CI_ELASTIC_AGENT_DOCKER_IMAGE * feat: use os.WriteFile in writePackageVersion * chore: bump to latest snapshot DRA * fix: always DownloadManifest if PackagingFromManifest is set in mage package * fix: check err of filepath.Abs(dropPath) (cherry picked from commit a155660) # Conflicts: # .package-version # testing/integration/ess/upgrade_broken_package_test.go
e99e0d5 to
d0c48ee
Compare
Contributor
|
Blocked by #9252 |
Contributor
|
pkoutsovasilis
approved these changes
Aug 8, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




What does this PR do?
This PR reworks the
.package-versionfile format and integrates it into our CI and mage workflows to enable deterministic, snapshot-based builds of Elastic Agent based on published DRA (Downloadable Release Artifacts).Key changes:
.package-versionis now a structured JSON file containing version metadata (version,build_id,stack_build_id,manifest_url, etc.)..package-versionwhenUSE_PACKAGE_VERSION=trueis set.magetargetUpdatePackageVersionreplaces previous logic with a structured update mechanism for.package-version..package-version.Why is it important?
We previously had a fundamental dependency issue in the release flow: to produce a new Elastic Agent DRA, we needed to bump the agent version — but our CI integration tests required that same DRA to already exist in order to pass. This created a timing problem and made the release workflow fragile.
With this PR:
.package-versionwhenUSE_PACKAGE_VERSION=trueis set, allowing packaging and testing to rely on a known-good, previously published DRA..package-version, now become the authoritative source of truth for the Elastic Agent version used in the repo and must be handled with utmost care..package-versionhas been merged.This enables a reproducible and version-pinned CI system while allowing us to automate snapshot bumps in a controlled and testable way.
An experimental version bump under commit
a57ee10verified this flow successfully. The CI run is available here.Checklist
./changelog/fragmentsusing the changelog toolDisruptive User Impact
None expected. Existing workflows are unaffected unless
USE_PACKAGE_VERSION=trueis explicitly set. In that case,.package-versionis required and must be up to date.How to test this PR locally
specify
USE_PACKAGE_VERION=trueand call anymagetarget e.g.Related issues
This is an automatic backport of pull request #9048 done by [Mergify](https://mergify.com).